16bit to ASCII HexDecimal via output routine by http://elm-chan.org
;-----------------------------------------------------------------------------; ; Universal hexdecimal string conversion (8/16/32 bit) ; ; Register Variables: ; Call: var3:0 = 8/16/24/32 bit value to be converted ; ; Result: var3:0 = <Unknown> ; ; Size: 23 words ; Clock: depends on output routine ; Stack: 2 (+output routine) mk_h32: push var0 mov var0, var3 rcall mk_h08 pop var0 mk_h24: push var0 mov var0, var2 rcall mk_h08 pop var0 mk_h16: push var0 mov var0, var1 rcall mk_h08 pop var0 mk_h08: push var0 swap var0 rcall PC+2 pop var0 andi var0,0x0f cpi var0,10 brcs PC+2 subi var0,-7 subi var0,-'0' rcall xmit ret
file: /Techref/atmel/avr/bin2asciihex16b-ec.htm, 1KB, , updated: 2007/9/14 18:36, local time: 2024/10/31 18:02,
3.145.20.132:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/atmel/avr/bin2asciihex16b-ec.htm"> Atmel AVR, atmega, Microcontroller, embedded controller, radix conversion, 16bit to ASCII HexDecimal</A> |
Did you find what you needed? |
PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.